1
תגובות
בניתי תבנית וורדפרס מבוססת bootstrap, אך איני מצליח לערוך את עיצוב התפריטים כך שיתאימו לbootstrap, מפני שוורדפרס קובע את תצורת התפריטים בעצמו. ניסיתי תוספים ופילטרים למיניהם ללא הצלחה. רעיונות?

1 תשובות

avatar ענה omerbsh ב 12 לאפריל 2015 #

היי , ניתקלתי באותה בעייה באתר שלי מתכנת PHP , העניין בוורדפרס שכדי להתאים את התפריט לאתר שלך יש צורך בשימוש בmenu api שלהם , והתיעוד נמצא כאן -
https://codex.wordpress.org/Function_Reference/wp_nav_menu

אתה צריך לשנות את ההגדרות שנקראות container בעצם לdiv שעוטף לך את התפריט (לפי מה שBootstrap דורש) , וכדי לשנות את הפריטים בתפריט עצמו אתה צריך ליצור Class ולטעון אותה באובייקט - walker (גם כתוב עליו בדוקומנטציה).

זה מה שאני עשיתי שים לב , זה הclass של הwalker שלי -

class Custom_Walker_Nav_Menu extends Walker_Nav_Menu {
 
    function start_el ( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
      $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

      $classes = empty( $item->classes ) ? array() : (array) $item->classes;
      $classes[] = 'menu-item-' . $item->ID;

      //print_r($classes);

      $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args, $depth ) );
      $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';

      $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args, $depth );
      $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';

      $output .= $indent . '';

      $atts = array();
      $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';
      $atts['target'] = ! empty( $item->target )     ? $item->target     : '';
      $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';
      $atts['href']   = ! empty( $item->url )        ? $item->url        : '';

      $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args, $depth );

      $attributes = '';
      foreach ( $atts as $attr => $value ) {
        if ( ! empty( $value ) ) {
          $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
          $attributes .= ' ' . $attr . '="' . $value . '"';
        }
      }

      $item_output = $args->before;
      if ($classes[4]=='current-menu-item')
      {
       $ba = 'active';
      }
      else
      {
       $ba = '';
      }
     
      $item_output .= '<a'. $attributes .' class="list-group-item '.$ba.'">';
      /** This filter is documented in wp-includes/post-template.php */
      $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
      $item_output .= '</a>';
      $item_output .= $args->after;
      $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    }

    function end_el( &$output, $item, $depth = 0, $args = array() ) {
      $output .= "";
    }
}


שלמעשה בתוכו אתה מתאים את הפריטים בתפריט כך שיצאימו עם Bootstrap . וכך אתה טוען את הclass כאשר אתה קורא לתפריט -
<?php wp_nav_menu( array('theme_location'  => 'sidebar-menu','walker' => new Custom_Walker_Nav_Menu)); ?>


ממליץ שתבדוק איך הקובץ הבא של וורדפרס בנוי -
https://core.trac.wordpress.org/browser/tags/4.1.1/src//wp-includes/nav-menu-template.php#L0